python "".join() 出错TypeError: sequence item 0: expected string, int found
python中使用join连接list时出现类型错误的解决办法 例: >>> ls = [1,2,3] >>> print ','.join(ls) Tra ...
python中使用join连接list时出现类型错误的解决办法 例: >>> ls = [1,2,3] >>> print ','.join(ls) Tra ...
#取得当天0点的时间戳,返回的是Long型的数据 def getTimeOClockOfToday(): import time t = time.localtime(ti ...